tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
undmg: 1.0.2 -> 1.0.3
undmg: Readd setup-hook
ndowens
9 years ago
d12df182
33e23934
+9
-8
1 changed file
expand all
collapse all
unified
split
pkgs
tools
archivers
undmg
default.nix
+9
-8
pkgs/tools/archivers/undmg/default.nix
···
1
{ stdenv, fetchFromGitHub, zlib, bzip2 }:
2
3
stdenv.mkDerivation rec {
4
-
version = "1.0.2";
5
name = "undmg-${version}";
6
7
src = fetchFromGitHub {
8
owner = "matthewbauer";
9
repo = "undmg";
10
-
rev = "refs/tags/v${version}";
11
-
sha256 = "0w9vwvj9zbpsjkg251bwv9y10wjyjmh54q2piklz74w64rlbqblr";
12
-
name = "undmg-${version}";
13
};
14
15
buildInputs = [ zlib bzip2 ];
16
17
setupHook = ./setup-hook.sh;
18
19
-
installFlags = "PREFIX=\${out}";
20
21
-
meta = {
22
homepage = https://github.com/matthewbauer/undmg;
23
description = "Extract a DMG file";
24
-
license = stdenv.lib.licenses.gpl3;
25
-
platforms = stdenv.lib.platforms.all;
0
26
};
27
}
···
1
{ stdenv, fetchFromGitHub, zlib, bzip2 }:
2
3
stdenv.mkDerivation rec {
4
+
version = "1.0.3";
5
name = "undmg-${version}";
6
7
src = fetchFromGitHub {
8
owner = "matthewbauer";
9
repo = "undmg";
10
+
rev = "v${version}";
11
+
sha256 = "1pxqw92h2w75d4jwiihwnkhnsfk09cddh3flgrqwh9r3ry14fgbb";
12
+
13
};
14
15
buildInputs = [ zlib bzip2 ];
16
17
setupHook = ./setup-hook.sh;
18
19
+
makeFlags = "PREFIX=$(out)";
20
21
+
meta = with stdenv.lib; {
22
homepage = https://github.com/matthewbauer/undmg;
23
description = "Extract a DMG file";
24
+
license = licenses.gpl3;
25
+
platforms = platforms.all;
26
+
maintainers = with maintainers; [ matthewbauer lnl7 ];
27
};
28
}