19 lines
357 B
Nix
19 lines
357 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;
|
|
};
|
|
}
|