tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
bam: 0.4.0 -> 0.5.1, fix licence
Linus Heckemann
7 years ago
4c651d16
de3b2d17
+9
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
build-managers
bam
default.nix
+9
-7
pkgs/development/tools/build-managers/bam/default.nix
···
1
-
{ stdenv, fetchurl, lua5, python }:
2
3
stdenv.mkDerivation rec {
4
name = "bam-${version}";
5
-
version = "0.4.0";
6
7
-
src = fetchurl {
8
-
url = "http://github.com/downloads/matricks/bam/${name}.tar.bz2";
9
-
sha256 = "0z90wvyd4nfl7mybdrv9dsd4caaikc6fxw801b72gqi1m9q0c0sn";
0
0
10
};
11
12
-
buildInputs = [ lua5 python ];
13
14
buildPhase = ''${stdenv.shell} make_unix.sh'';
15
···
29
raskin
30
];
31
platforms = platforms.linux;
32
-
license = licenses.free;
33
downloadPage = "http://matricks.github.com/bam/";
34
};
35
}
···
1
+
{ stdenv, fetchFromGitHub, lua5_3, python }:
2
3
stdenv.mkDerivation rec {
4
name = "bam-${version}";
5
+
version = "0.5.1";
6
7
+
src = fetchFromGitHub {
8
+
owner = "matricks";
9
+
repo = "bam";
10
+
rev = "v${version}";
11
+
sha256 = "13br735ig7lygvzyfd15fc2rdygrqm503j6xj5xkrl1r7w2wipq6";
12
};
13
14
+
buildInputs = [ lua5_3 python ];
15
16
buildPhase = ''${stdenv.shell} make_unix.sh'';
17
···
31
raskin
32
];
33
platforms = platforms.linux;
34
+
license = licenses.zlib;
35
downloadPage = "http://matricks.github.com/bam/";
36
};
37
}