nixpkgs/pkgs/development/libraries/safefile/default.nix

28 lines
805 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, path, runtimeShell }:
2017-04-15 09:53:38 +01:00
stdenv.mkDerivation rec {
pname = "safefile";
version = "1.0.5";
src = fetchurl {
url = "http://research.cs.wisc.edu/mist/${pname}/releases/${pname}-${version}.tar.gz";
2017-04-15 09:53:38 +01:00
sha256 = "1y0gikds2nr8jk8smhrl617njk23ymmpxyjb2j1xbj0k82xspv78";
};
passthru = {
updateScript = ''
#!${runtimeShell}
2017-04-15 09:53:38 +01:00
cd ${toString ./.}
${toString path}/pkgs/build-support/upstream-updater/update-walker.sh default.nix
2017-04-15 09:53:38 +01:00
'';
};
meta = {
description = "File open routines to safely open a file when in the presence of an attack";
license = lib.licenses.asl20 ;
maintainers = [lib.maintainers.raskin];
2021-03-12 05:21:58 +00:00
platforms = lib.platforms.all;
homepage = "https://research.cs.wisc.edu/mist/safefile/";
2017-04-15 09:53:38 +01:00
updateWalker = true;
};
}