python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / archivers / pxattr / default.nix
blob57eb7e6f87a13f515ffeb0a97c68018de68bf82c
1 { lib, stdenv, fetchurl, gcc }:
3 stdenv.mkDerivation rec {
4   pname = "pxattr";
5   version = "2.1.0";
7   src = fetchurl {
8     url = "https://www.lesbonscomptes.com/pxattr/pxattr-${version}.tar.gz";
9     sha256 = "1dwcqc5z7gzma1zhis2md49bj2nq7m6jimh4zlx9szw6svisz56z";
10   };
12   buildInputs = [ gcc ];
14   installPhase = ''
15     mkdir -p $out/bin
16     cp pxattr $out/bin
17   '';
19   meta = {
20     homepage = "https://www.lesbonscomptes.com/pxattr/index.html";
21     description = "Provides a single interface to extended file attributes";
22     maintainers = [ lib.maintainers.vrthra ];
23     license = [ lib.licenses.mit ];
24     platforms = lib.platforms.unix;
25   };