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
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib
2
+
, python3Packages
3
+
}:
4
+
5
+
python3Packages.buildPythonApplication rec {
6
+
pname = "gomp";
7
+
version = "1.1.0";
8
+
9
+
src = python3Packages.fetchPypi {
10
+
inherit pname version;
11
+
sha256 = "11nq40igqbyfiygdzb1zyxx1n6d9xkv8vlmprbbi75mq54gfihhb";
12
+
};
13
+
14
+
doCheck = false; # tests require interactive terminal
15
+
16
+
meta = with lib; {
17
+
description = "A tool for comparing Git branches";
18
+
homepage = "https://github.com/MarkForged/GOMP";
19
+
license = licenses.mit;
20
+
maintainers = with maintainers; [ prusnak ];
21
+
platforms = platforms.unix;
22
+
};
23
+
}
+2
pkgs/top-level/all-packages.nix
···
17015
17016
gmailctl = callPackage ../applications/networking/gmailctl {};
17017
0
0
17018
gpm = callPackage ../servers/gpm {
17019
ncurses = null; # Keep curses disabled for lack of value
17020
};
···
17015
17016
gmailctl = callPackage ../applications/networking/gmailctl {};
17017
17018
+
gomp = callPackage ../applications/version-management/gomp { };
17019
+
17020
gpm = callPackage ../servers/gpm {
17021
ncurses = null; # Keep curses disabled for lack of value
17022
};