pwnix/pycdc.nix

9 lines
189 B
Nix
Raw Permalink Normal View History

2021-12-04 14:36:05 +01:00
{ nixpkgs, pycdc }: with nixpkgs;
stdenv.mkDerivation {
pname = "pycdc";
src = pycdc.outPath;
version = pycdc.shortRev;
buildInputs = [ python ];
nativeBuildInputs = [ cmake ];
}