python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / lockfile-progs / default.nix
blobe245a05182dad39e8bd0d221eb22b33d3f641c1e
1 { lib, stdenv, fetchurl, liblockfile }:
3 stdenv.mkDerivation rec {
4   pname   = "lockfile-progs";
5   version = "0.1.19";
7   src = fetchurl {
8     url = "mirror://debian/pool/main/l/${pname}/${pname}_${version}.tar.gz";
9     sha256 = "sha256-LFcEsByPR0+CkheA5Fkqknsr9qbXYWNUpsXXzVZkhX4=";
10   };
12   buildInputs = [ liblockfile ];
14   installPhase = ''
15     runHook preInstall
16     mkdir -p $out/bin $out/man/man1
17     install -s bin/* $out/bin
18     install man/*.1 $out/man/man1
19     runHook postInstall
20   '';
22   meta = {
23     broken = stdenv.isDarwin;
24     description = "Programs for locking and unlocking files and mailboxes";
25     homepage = "http://packages.debian.org/sid/lockfile-progs";
26     license = lib.licenses.gpl2Only;
28     maintainers = [ lib.maintainers.bluescreen303 ];
29     platforms = lib.platforms.all;
30   };