bat/tests/syntax-tests/source/nix/test.nix

17 lines
253 B
Nix
Raw Normal View History

2020-10-25 18:06:05 +00:00
{ nixpkgs ? <nixpkgs>
, nixpkgs' ? import nixpkgs {}}: with nixpkgs';
# some comment
stdenv.mkDerivation rec {
pname = "test";
version = "0.2.3";
name = "${pname}-${version}";
src = ./;
buildInputs = {
gzip
bzip2
python27
};
}