Files
nixpkgs/pkgs/by-name/py/pycdc/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

29 lines
604 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation {
pname = "pycdc";
version = "0-unstable-2024-10-13";
src = fetchFromGitHub {
owner = "zrax";
repo = "pycdc";
rev = "5e1c4037a96b966e4e6728c55b2d7ee8076a13c3";
hash = "sha256-c/mfM2I8Rw136aQ3IAQOkkrOEtZ5LC/xKuWXzCItW2w=";
};
nativeBuildInputs = [ cmake ];
meta = {
description = "C++ python bytecode disassembler and decompiler";
homepage = "https://github.com/zrax/pycdc";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ msm ];
mainProgram = "pycdc";
};
}