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

16 lines
2.1 KiB
Nix
Raw Normal View History

2020-10-25 19:06:05 +01: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 19:13:12 +01:00
 buildInputs = [
2020-10-25 19:06:05 +01:00
 gzip
2020-10-25 19:13:12 +01:00
 bzip2
 python27
 ];
2020-10-25 19:06:05 +01:00
}