1
0
mirror of https://github.com/sharkdp/bat.git synced 2024-10-06 19:01:07 +01:00
bat/tests/syntax-tests/source/nix/test.nix

16 lines
241 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}";
2020-10-25 18:13:12 +00:00
buildInputs = [
2020-10-25 18:06:05 +00:00
gzip
bzip2
python27
2020-10-25 18:13:12 +00:00
];
2020-10-25 19:48:26 +00:00
}