mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
21 lines
539 B
Nix
21 lines
539 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cksfv";
|
|
version = "1.3.15";
|
|
|
|
src = fetchurl {
|
|
url = "https://zakalwe.fi/~shd/foss/cksfv/files/cksfv-${version}.tar.bz2";
|
|
sha256 = "0k06aq94cn5xp4knjw0p7gz06hzh622ql2xvnrlr3q8rcmdvwwx1";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://zakalwe.fi/~shd/foss/cksfv/";
|
|
description = "Tool for verifying files against a SFV checksum file";
|
|
maintainers = [ ];
|
|
platforms = platforms.all;
|
|
license = licenses.gpl2Plus;
|
|
mainProgram = "cksfv";
|
|
};
|
|
}
|