nixpkgs/pkgs/development/tools/flock/default.nix

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

32 lines
845 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, fetchpatch, autoreconfHook, ronn }:
2018-02-17 15:16:00 +00:00
stdenv.mkDerivation rec {
pname = "flock";
version = "0.4.0";
2018-02-17 15:16:00 +00:00
src = fetchFromGitHub {
owner = "discoteq";
repo = pname;
rev = "v${version}";
sha256 = "sha256-cCpckORtogs6Nt7c5q2+z0acXAnALdLV6uzxa5ng3s4=";
2018-02-17 15:16:00 +00:00
};
nativeBuildInputs = [ autoreconfHook ronn ];
2018-02-17 15:16:00 +00:00
patches = [
(fetchpatch {
name = "fix-format-specifier.patch";
url = "https://github.com/discoteq/flock/commit/408bad42eb8d76cdd0c504c2f97f21c0b424c3b1.patch";
sha256 = "sha256-YuFKXWTBu9A2kBNqkg1Oek6vDbVo/y8dB1k9Fuh3QmA";
})
];
2018-02-17 15:16:00 +00:00
meta = with lib; {
description = "Cross-platform version of flock(1)";
2023-04-20 08:33:46 +00:00
maintainers = with maintainers; [ matthewbauer msfjarvis ];
2024-01-05 14:02:39 +00:00
mainProgram = "flock";
2018-02-17 15:16:00 +00:00
platforms = platforms.all;
license = licenses.isc;
};
}