nixpkgs/pkgs/development/libraries/safefile/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

31 lines
841 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "safefile";
version = "1.0.5";
src = fetchurl {
url = "http://research.cs.wisc.edu/mist/${pname}/releases/${name}.tar.gz";
sha256 = "1y0gikds2nr8jk8smhrl617njk23ymmpxyjb2j1xbj0k82xspv78";
};
buildInputs = [];
passthru = {
updateScript = ''
cd ${toString ./.}
${toString <nixpkgs/pkgs/build-support/upstream-updater/update-walker.sh>} default.nix
'';
};
meta = {
inherit version;
description = "File open routines to safely open a file when in the presence of an attack";
license = stdenv.lib.licenses.asl20 ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
homepage = http://research.cs.wisc.edu/mist/safefile/;
updateWalker = true;
};
}