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

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

32 lines
823 B
Nix
Raw Normal View History

2022-05-20 04:20:00 +00:00
{ lib, stdenv, fetchFromGitHub, fetchpatch }:
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
};
2022-05-20 04:20:00 +00:00
patches = [
# Fix POSIX_C_SOURCE macro. Remove with the next release.
(fetchpatch {
url = "https://github.com/clamiax/snore/commit/284e5aa56e775803d24879954136401a106aa063.patch";
sha256 = "sha256-len8E8h9CXC25WB2lmnLLJ0PR903tgllDh9K2RqzQk0=";
})
];
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;
};
}