Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / safefile / default.nix
blob1f49afbacff295093afd992e00b0a74a7995b931
1 { lib, stdenv, fetchurl, path, runtimeShell }:
2 stdenv.mkDerivation rec {
3   pname = "safefile";
4   version = "1.0.5";
6   src = fetchurl {
7     url = "http://research.cs.wisc.edu/mist/${pname}/releases/${pname}-${version}.tar.gz";
8     sha256 = "1y0gikds2nr8jk8smhrl617njk23ymmpxyjb2j1xbj0k82xspv78";
9   };
11   meta = with lib; {
12     description = "File open routines to safely open a file when in the presence of an attack";
13     license = licenses.asl20;
14     maintainers = with maintainers; [ raskin ];
15     platforms = platforms.all;
16     homepage = "https://research.cs.wisc.edu/mist/safefile/";
17   };