6.NUR/release.nix
2018-08-13 10:31:04 +02:00

13 lines
316 B
Nix

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