pwnix/pycdc.nix
2021-12-04 14:36:05 +01:00

8 lines
189 B
Nix

{ nixpkgs, pycdc }: with nixpkgs;
stdenv.mkDerivation {
pname = "pycdc";
src = pycdc.outPath;
version = pycdc.shortRev;
buildInputs = [ python ];
nativeBuildInputs = [ cmake ];
}