2
0
Fork 0
genodepkgs/packages/show_input/default.nix

22 lines
459 B
Nix
Raw Normal View History

2020-06-07 15:48:22 +02:00
{ stdenv, fetchgit, tup }:
stdenv.mkDerivation rec {
pname = "show_input";
2020-08-30 14:52:02 +02:00
version = "0.2.0";
2020-06-07 15:48:22 +02:00
src = fetchgit {
url = "https://git.sr.ht/~ehmry/show_input";
rev = "v" + version;
2020-08-30 14:52:02 +02:00
sha256 = "sha256-yW9DaQBClAtPyo62oFPn+eu+y5VKBFPl+dmUMPaFi1A=";
2020-06-07 15:48:22 +02:00
};
nativeBuildInputs = [ tup ];
installPhase = "install -Dm755 {.,$out}/${pname}";
meta = with stdenv.lib; {
license = licenses.agpl3;
maintainers = [ maintainers.ehmry ];
};
}