You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
451 B
Nix
22 lines
451 B
Nix
{ stdenv, fetchgit, tup }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "nic_bus";
|
|
version = "2.1";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.sr.ht/~ehmry/nic_bus";
|
|
rev = "v" + version;
|
|
sha256 = "sha256-NuXbkBgZx1DZ3yWH3iOJZ6oMVpKV1Cc2ZfqQzTM16C8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ tup ];
|
|
|
|
installPhase = "install -Dm755 {.,$out}/${pname}";
|
|
|
|
meta = with stdenv.lib; {
|
|
license = licenses.agpl3;
|
|
maintainers = [ maintainers.ehmry ];
|
|
};
|
|
|
|
}
|