mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
33 lines
850 B
Nix
33 lines
850 B
Nix
{ stdenv, fetchurl, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "philter";
|
|
version = "1.1";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/philter/${pname}-${version}.tar.gz";
|
|
sha256 = "177pqfflhdn2mw9lc1wv9ik32ji69rjqr6dw83hfndwlsva5151l";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out"/{bin,share/philter}
|
|
cp .philterrc "$out"/share/philter/philterrc
|
|
sed -i 's@/usr/local/bin@${python}/bin@' src/philter.py
|
|
cp src/philter.py "$out"/bin/philter
|
|
chmod +x "$out"/bin/philter
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Mail sorter for Maildirs";
|
|
homepage = http://philter.sourceforge.net;
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
};
|
|
|
|
passthru = {
|
|
updateInfo = {
|
|
downloadPage = "http://philter.sourceforge.net/";
|
|
};
|
|
};
|
|
}
|