summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLassulus <github@lassul.us>2020-10-06 21:46:09 +0200
committerGitHub <noreply@github.com>2020-10-06 21:46:09 +0200
commit2927f3fb45be21d5811a88d1329b4d6795707b9e (patch)
treed9c08663e84b9275cb32ac238424943859e9cac7
parent2b1b93a77ea8796af7e373e08d098f60273e5ac9 (diff)
parent751ac80c8b9ea029192b889beb06d9d4ad600870 (diff)
Merge pull request #99186 from 0x4A6F/master-qubes-core-vchan-xen
qubes-core-vchan-xen: 4.1.2 -> 4.1.4
-rw-r--r--pkgs/applications/qubes/qubes-core-vchan-xen/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/applications/qubes/qubes-core-vchan-xen/default.nix b/pkgs/applications/qubes/qubes-core-vchan-xen/default.nix
index ce9e4b5d881f..f4d1b27478d4 100644
--- a/pkgs/applications/qubes/qubes-core-vchan-xen/default.nix
+++ b/pkgs/applications/qubes/qubes-core-vchan-xen/default.nix
@@ -1,20 +1,25 @@
-{ stdenv, fetchFromGitHub, xen_4_10 }:
+{ stdenv
+, fetchFromGitHub
+, xen_4_10
+}:
stdenv.mkDerivation rec {
pname = "qubes-core-vchan-xen";
- version = "4.1.2";
+ version = "4.1.4";
src = fetchFromGitHub {
owner = "QubesOS";
repo = pname;
rev = "v${version}";
- sha256 = "1wj4vv8nkzzig52r2nzkd4jy0cwznfkyddx379hfsdl4pzsp55mj";
+ sha256 = "sha256:02l1vs5c2jfw22gxvl2fb66m0d99n8ya1i7rphsb5cxsljvxary0";
};
buildInputs = [ xen_4_10 ];
+
buildPhase = ''
- make all PREFIX=/
+ make all PREFIX=/ LIBDIR="$out/lib" INCLUDEDIR="$out/include"
'';
+
installPhase = ''
make install DESTDIR=$out PREFIX=/
'';
@@ -26,4 +31,5 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ _0x4A6F ];
platforms = platforms.linux;
};
+
}