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 {
2022-01-20 09:40:58 +00:00
version = "0.2";
2019-10-18 02:00:00 +00:00
pname = "snore";
src = fetchFromGitHub {
owner = "clamiax";
repo = pname;
rev = version;
2022-01-20 09:40:58 +00:00
sha256 = "sha256-EOwbRqtQEuGZ+aeCBNVfLUq4m/bFWJTvMDM6a+y74qc=";
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;
};
}