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
2020-10-25 21:03:30 +01:00

17 lines
253 B
Nix

{ 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
};
}