Compare commits

..

2 commits

Author SHA1 Message Date
07adce2449
Git: Ignore result symlink created by nix 2024-08-28 15:28:25 +02:00
d22f83ba06
Nix: Add support for building using nix
This patch adds a default nix which invokes a `callPackage`
to build sources from the current working directory.

To invoke the build run `nix-build`.
2024-08-28 15:28:18 +02:00
2 changed files with 58 additions and 1 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
/target /target
private.rs private.rs
result

56
default.nix Normal file
View file

@ -0,0 +1,56 @@
{ pkgs ? import <nixpkgs> {} }: let
package = {
rustPlatform,
nix-gitignore,
pkg-config,
openssl,
glib,
gdk-pixbuf,
graphene,
cairo,
pango,
gtk4,
libsoup_3,
libadwaita,
webkitgtk_6_0,
libseccomp,
wrapGAppsHook4,
glib-networking,
}: rustPlatform.buildRustPackage {
pname = "paket";
version = "unstable-2024-08-28";
src = nix-gitignore.gitignoreSource [] ./.;
cargoHash = "sha256-RYXnXQZZV01g65EB66LpltI7K2+O5AoqdECKPin7aDc=";
nativeBuildInputs = [
pkg-config
graphene
cairo
wrapGAppsHook4
];
buildInputs = [
# Building
openssl
glib
gdk-pixbuf
pango
gtk4
libsoup_3
libadwaita
webkitgtk_6_0 # for JSC
# Linking
libseccomp
# Runtime
glib-networking
];
meta = {
mainProgram = "packet";
};
};
in pkgs.callPackage package { }