23 lines
364 B
Nix
23 lines
364 B
Nix
{
|
|
buildPythonApplication,
|
|
zlib,
|
|
lib,
|
|
}:
|
|
|
|
with lib;
|
|
|
|
buildPythonApplication {
|
|
name = "fck";
|
|
version = "0.1";
|
|
|
|
src = cleanSource ./.;
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
meta = {
|
|
homepage = "https://git.ophanim.de/derped/fck";
|
|
description = "A small checksum utility that just works.";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|