tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gomp: init at 1.1.0
Pavol Rusnak
5 years ago
f34f2595
0f8eb0b8
+25
2 changed files
expand all
collapse all
unified
split
pkgs
applications
version-management
gomp
default.nix
top-level
all-packages.nix
+23
pkgs/applications/version-management/gomp/default.nix
···
1
1
+
{ lib
2
2
+
, python3Packages
3
3
+
}:
4
4
+
5
5
+
python3Packages.buildPythonApplication rec {
6
6
+
pname = "gomp";
7
7
+
version = "1.1.0";
8
8
+
9
9
+
src = python3Packages.fetchPypi {
10
10
+
inherit pname version;
11
11
+
sha256 = "11nq40igqbyfiygdzb1zyxx1n6d9xkv8vlmprbbi75mq54gfihhb";
12
12
+
};
13
13
+
14
14
+
doCheck = false; # tests require interactive terminal
15
15
+
16
16
+
meta = with lib; {
17
17
+
description = "A tool for comparing Git branches";
18
18
+
homepage = "https://github.com/MarkForged/GOMP";
19
19
+
license = licenses.mit;
20
20
+
maintainers = with maintainers; [ prusnak ];
21
21
+
platforms = platforms.unix;
22
22
+
};
23
23
+
}
+2
pkgs/top-level/all-packages.nix
···
17015
17015
17016
17016
gmailctl = callPackage ../applications/networking/gmailctl {};
17017
17017
17018
17018
+
gomp = callPackage ../applications/version-management/gomp { };
17019
17019
+
17018
17020
gpm = callPackage ../servers/gpm {
17019
17021
ncurses = null; # Keep curses disabled for lack of value
17020
17022
};