show_input: init at 0.1.0

This commit is contained in:
Emery Hemingway 2020-06-07 19:18:22 +05:30
parent ce6037f2c1
commit 6bd3b29f5d
2 changed files with 25 additions and 0 deletions

View File

@ -112,6 +112,8 @@ in depotPkgs // {
rtc-dummy = callPackage ./rtc-dummy { };
show_input = callPackage ./show_input { };
solo5 = let drv = callPackage ./solo5 { };
in drv // { tests = drv.tests // { pname = "solo5-tests"; }; };

View File

@ -0,0 +1,23 @@
# SPDX-License-Identifier: CC0-1.0
{ stdenv, fetchgit, tup }:
stdenv.mkDerivation rec {
pname = "show_input";
version = "0.1.0";
src = fetchgit {
url = "https://git.sr.ht/~ehmry/show_input";
rev = "v" + version;
sha256 = "sha256-xgbZfCN8nszIw0PccLhxlT/AC/84HMwByP7K24hlsHA=";
};
nativeBuildInputs = [ tup ];
installPhase = "install -Dm755 {.,$out}/${pname}";
meta = with stdenv.lib; {
license = licenses.agpl3;
maintainers = [ maintainers.ehmry ];
};
}