Add Nix package

This commit is contained in:
Mikhail Klementev 2020-01-04 18:20:27 +00:00
parent 40ef3fe50e
commit 7d6d524b67
No known key found for this signature in database
GPG key ID: BE44DA8C062D87DC
3 changed files with 114 additions and 0 deletions

37
default.nix Normal file
View file

@ -0,0 +1,37 @@
{ stdenv
, lib
, buildGoPackage
, fetchgit
, nix
, virt-viewer
, makeWrapper
}:
buildGoPackage rec {
pname = "appvm";
version = "0.3";
buildInputs = [ makeWrapper ];
goPackagePath = "code.dumpstack.io/tools/${pname}";
src = fetchgit {
rev = "refs/tags/v${version}";
url = "https://code.dumpstack.io/tools/${pname}.git";
sha256 = "1ji4g868xrv6kx6brdrqfv0ca12vjw0mcndffnnwpczh4yv81sd3";
};
goDeps = ./deps.nix;
postFixup = ''
wrapProgram $bin/bin/appvm \
--prefix PATH : "${lib.makeBinPath [ nix virt-viewer ]}"
'';
meta = {
description = "Nix-based app VMs";
homepage = "https://code.dumpstack.io/tools/${pname}";
maintainers = [ lib.maintainers.dump_stack ];
license = lib.licenses.gpl3;
};
}