2016-05-09 19:50:33 +01:00
|
|
|
{ stdenv, fetchurl, gcc }:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2016-05-09 19:50:33 +01:00
|
|
|
name = "pxattr-2.1.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.lesbonscomptes.com/pxattr/pxattr-2.1.0.tar.gz";
|
2016-05-09 19:50:33 +01:00
|
|
|
sha256 = "1dwcqc5z7gzma1zhis2md49bj2nq7m6jimh4zlx9szw6svisz56z";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gcc ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp pxattr $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2019-04-22 09:14:28 +01:00
|
|
|
homepage = https://www.lesbonscomptes.com/pxattr/index.html;
|
2016-05-09 19:50:33 +01:00
|
|
|
description = "Provides a single interface to extended file attributes";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.vrthra ];
|
|
|
|
license = [ stdenv.lib.licenses.mit ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-05-09 19:50:33 +01:00
|
|
|
};
|
|
|
|
}
|