mirror of
https://github.com/sharkdp/bat
synced 2024-12-18 00:03:05 +00:00
17 lines
253 B
Nix
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
|
||
|
};
|
||
|
}
|