nixpkgs/pkgs/tools/networking/cksfv/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
528 B
Nix
Raw Normal View History

2021-08-12 00:18:19 +01:00
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "cksfv";
version = "1.3.15";
2018-09-10 20:14:40 +01:00
src = fetchurl {
2021-08-12 00:18:19 +01:00
url = "https://zakalwe.fi/~shd/foss/cksfv/files/cksfv-${version}.tar.bz2";
2020-10-22 08:49:34 +01:00
sha256 = "0k06aq94cn5xp4knjw0p7gz06hzh622ql2xvnrlr3q8rcmdvwwx1";
};
meta = with lib; {
2021-08-12 00:18:19 +01:00
homepage = "https://zakalwe.fi/~shd/foss/cksfv/";
description = "A tool for verifying files against a SFV checksum file";
2021-08-12 00:18:19 +01:00
maintainers = with maintainers; [ ];
2018-09-10 20:14:40 +01:00
platforms = platforms.all;
license = licenses.gpl2;
};
}