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.
23 lines
495 B
Nix
23 lines
495 B
Nix
{ stdenv, fetchgit, tup }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rtc_dummy";
|
|
version = "0.0.0";
|
|
|
|
nativeBuildInputs = [ tup ];
|
|
|
|
src = fetchgit {
|
|
url = "https://git.sr.ht/~ehmry/rtc-dummy";
|
|
rev = "42c8a0453853816b99c56fc7bde8e1039b2ec0a7";
|
|
sha256 = "1rs081cxwbf2sra383j7r9xrg12gqf591hiyb4h2h3qa9pc6p602";
|
|
};
|
|
|
|
installPhase = "install -Dm755 ./rtc-dummy $out/rtc_drv";
|
|
|
|
meta = with stdenv.lib; {
|
|
license = licenses.agpl3;
|
|
maintainers = [ maintainers.ehmry ];
|
|
};
|
|
|
|
}
|