Skip to content

Commit

Permalink
safefile: init at 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
7c6f434c committed Apr 15, 2017
1 parent a98c26c commit b454dcd
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
30 changes: 30 additions & 0 deletions pkgs/development/libraries/safefile/default.nix
@@ -0,0 +1,30 @@
{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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -9715,6 +9715,8 @@ with pkgs;

sad = callPackage ../applications/science/logic/sad { };

safefile = callPackage ../development/libraries/safefile {};

sbc = callPackage ../development/libraries/sbc { };

schroedinger = callPackage ../development/libraries/schroedinger { };
Expand Down

0 comments on commit b454dcd

Please sign in to comment.