593e11fd94
According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
29 lines
842 B
Nix
29 lines
842 B
Nix
{ 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 = https://research.cs.wisc.edu/mist/safefile/;
|
|
updateWalker = true;
|
|
};
|
|
}
|