Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 18 lines 271 B view raw
1{ 2 mkKdeDerivation, 3 sass, 4 python3, 5 python3Packages, 6}: 7mkKdeDerivation { 8 pname = "breeze-gtk"; 9 10 # FIXME(later): upstream 11 patches = [ ./0001-fix-add-executable-bit.patch ]; 12 13 extraNativeBuildInputs = [ 14 sass 15 python3 16 python3Packages.pycairo 17 ]; 18}