Pacchetto libzakform.
authorAndrea Zagli <andrea.zagli@yahoo.com>
Wed, 7 Sep 2022 05:34:06 +0000 (07:34 +0200)
committerAndrea Zagli <andrea.zagli@yahoo.com>
Wed, 7 Sep 2022 05:34:06 +0000 (07:34 +0200)
libzakform.nix [new file with mode: 0644]

diff --git a/libzakform.nix b/libzakform.nix
new file mode 100644 (file)
index 0000000..b50befb
--- /dev/null
@@ -0,0 +1,16 @@
+{ pkgs ? import <nixpkgs> {} }:
+
+pkgs.stdenv.mkDerivation {
+  pname = "libzakform";
+  version = "0.0.1";
+
+  src = pkgs.fetchgit {
+        url = "https://saetta.ns0.it/git/zakform/libzakform";
+        sha256 = "yoLqyvQUYgPChvmu3nGGS2SANGvDfmIW1LJUg5h52OM=";
+       rev = "126946533f27d34f83e4a7e448b27e4db145f80d";
+    };
+
+  nativeBuildInputs = [ pkgs.autoconf pkgs.automake pkgs.glib pkgs.intltool pkgs.libtool pkgs.pkg-config pkgs.libxml2 pkgs.gtk-doc pkgs.gobject-introspection (pkgs.callPackage ./libzakutils.nix {}) ];
+
+  preConfigure="./autogen.sh";
+}