summary refs log blame commit diff
path: root/pkgs/development/libraries/safefile/default.nix
blob: 5136bac2de050c0001d06eb90c0dc231aacfe034 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                         
                         



                     
                                                                                          


                                                                    

                     
                       
                        
                                                                                       








                                                                                               
                                                          


                        
{ stdenv, fetchurl, path, runtimeShell }:
stdenv.mkDerivation rec {
  pname = "safefile";
  version = "1.0.5";

  src = fetchurl {
    url = "http://research.cs.wisc.edu/mist/${pname}/releases/${pname}-${version}.tar.gz";
    sha256 = "1y0gikds2nr8jk8smhrl617njk23ymmpxyjb2j1xbj0k82xspv78";
  };

  passthru = {
    updateScript = ''
      #!${runtimeShell}
      cd ${toString ./.}
      ${toString path}/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;
  };
}