mirror of
https://github.com/NixOS/nix.git
synced 2024-11-25 08:12:29 +00:00
891390d76f
Not intended to be merged (at least definitely not as it is)
13 lines
312 B
Nix
13 lines
312 B
Nix
let
|
|
# pkgs = (builtins.getFlake "github:NixOS/nixpkgs?rev=ad0d20345219790533ebe06571f82ed6b034db31").legacyPackages.x86_64-linux;
|
|
pkgs = import <nixpkgs> {};
|
|
in
|
|
pkgs.runCommandNoCC "foo" {
|
|
buildInputs = [
|
|
pkgs.firefox
|
|
pkgs.pandoc
|
|
# pkgs.nixosTests.xfce
|
|
];
|
|
}
|
|
"echo bar > $out"
|