6.NUR/release.nix
Jörg Thalheim d2e3c33ba7 speedup travis by avoid nix-shell for scripts
At the moment many build-time dependencies are downloaded.
2018-08-13 10:23:22 +02:00

12 lines
243 B
Nix

{ nixpkgs ? import <nixpkgs> }:
with import <nixpkgs> {};
python3Packages.buildPythonApplication {
name = "nur";
src = ./.;
makeWrapperArgs = [
"--prefix" "PATH" ":" "${stdenv.lib.makeBinPath [ nix-prefetch-git git nix ]}"
];
}