]> saetta.ns0.it Git - nix/pkgs/commitdiff
Pacchetto libzakutils.
authorAndrea Zagli <andrea.zagli@yahoo.com>
Tue, 6 Sep 2022 12:30:01 +0000 (14:30 +0200)
committerAndrea Zagli <andrea.zagli@yahoo.com>
Tue, 6 Sep 2022 12:30:01 +0000 (14:30 +0200)
libzakutils.nix [new file with mode: 0644]

diff --git a/libzakutils.nix b/libzakutils.nix
new file mode 100644 (file)
index 0000000..7d44ea5
--- /dev/null
@@ -0,0 +1,15 @@
+{ pkgs ? import <nixpkgs> {} }:
+
+pkgs.stdenv.mkDerivation {
+  pname = "libzakutils";
+  version = "0.0.1";
+
+  src = pkgs.fetchgit {
+        url = "https://saetta.ns0.it/git/libzakutils";
+        sha256 = "0fAQ37j9oTKWREYL6l72sP03MWBthS3ACcE/c9pXhpE=";
+    };
+
+  nativeBuildInputs = [ pkgs.autoconf pkgs.automake pkgs.glib pkgs.intltool pkgs.libtool pkgs.pkg-config ];
+
+  preConfigure="./autogen.sh";
+}