1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-01-19 12:24:17 +00:00

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
}