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