mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-10 21:27:01 +01:00
16 lines
241 B
Nix
Vendored
16 lines
241 B
Nix
Vendored
{ nixpkgs ? <nixpkgs>
|
|
, nixpkgs' ? import nixpkgs {}}: with nixpkgs';
|
|
|
|
# some comment
|
|
stdenv.mkDerivation rec {
|
|
pname = "test";
|
|
version = "0.2.3";
|
|
name = "${pname}-${version}";
|
|
|
|
buildInputs = [
|
|
gzip
|
|
bzip2
|
|
python27
|
|
];
|
|
}
|