nixpkgs/pkgs/tools/system/rwc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
530 B
Nix
Raw Normal View History

2022-03-01 06:18:21 +00:00
{ stdenv, fetchFromGitHub, lib }:
stdenv.mkDerivation rec {
pname = "rwc";
2024-01-05 07:42:20 +00:00
version = "0.3";
2022-03-01 06:18:21 +00:00
src = fetchFromGitHub {
owner = "leahneukirchen";
repo = pname;
rev = "v${version}";
2024-01-05 07:42:20 +00:00
sha256 = "sha256-rB20XKprd8jPwvXYdjIEr3/8ygPGCDAgLKbHfw0EgPk=";
2022-03-01 06:18:21 +00:00
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Report when files are changed";
license = licenses.publicDomain;
platforms = platforms.linux;
maintainers = with maintainers; [ somasis ];
2023-11-27 01:17:53 +00:00
mainProgram = "rwc";
2022-03-01 06:18:21 +00:00
};
}