Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #70204 from 0x4A6F/master-qubes-core-vchan-xen

qubes-core-vchan-xen: init at 4.1.2

authored by

Lassulus and committed by
GitHub
dc00a981 8cd5aa8a

+32
+30
pkgs/applications/qubes/qubes-core-vchan-xen/default.nix
··· 1 + { stdenv, fetchFromGitHub, xen_4_10 }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "qubes-core-vchan-xen"; 5 + version = "4.1.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "QubesOS"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "1wj4vv8nkzzig52r2nzkd4jy0cwznfkyddx379hfsdl4pzsp55mj"; 12 + }; 13 + 14 + buildInputs = [ xen_4_10 ]; 15 + buildPhase = '' 16 + make all PREFIX=/ 17 + ''; 18 + installPhase = '' 19 + make install DESTDIR=$out PREFIX=/ 20 + ''; 21 + 22 + meta = with stdenv.lib; { 23 + description = "Libraries required for the higher-level Qubes daemons and tools"; 24 + homepage = "https://qubes-os.org"; 25 + license = licenses.gpl2Plus; 26 + maintainers = with maintainers; [ "0x4A6F" ]; 27 + platforms = platforms.linux; 28 + }; 29 + } 30 +
+2
pkgs/top-level/all-packages.nix
··· 24993 24993 24994 24994 wifi-password = callPackage ../os-specific/darwin/wifi-password {}; 24995 24995 24996 + qubes-core-vchan-xen = callPackage ../applications/qubes/qubes-core-vchan-xen {}; 24997 + 24996 24998 }