nixpkgs/pkgs/tools/misc/snore/default.nix

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

24 lines
532 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2019-10-18 02:00:00 +00:00
stdenv.mkDerivation rec {
2023-01-03 04:20:00 +00:00
version = "0.3.1";
2019-10-18 02:00:00 +00:00
pname = "snore";
src = fetchFromGitHub {
owner = "clamiax";
repo = pname;
rev = version;
2023-01-03 04:20:00 +00:00
hash = "sha256-bKPGSePzp4XEZFY0QQr37fm3R1v3hLD6FeySFd7zNJc=";
2019-10-18 02:00:00 +00:00
};
makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with lib; {
2019-10-18 02:00:00 +00:00
description = "sleep with feedback";
homepage = "https://github.com/clamiax/snore";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
platforms = platforms.unix;
};
}