vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / tools / archivers / pxattr / default.nix
bloba5a7ab40115ccef1e380324555d238795f0877b7
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 = [ ];
23     license = [ lib.licenses.mit ];
24     platforms = lib.platforms.unix;
25     mainProgram = "pxattr";
26   };