tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pureref: init at 1.11.1
ElnuDev
3 years ago
afdcfa28
8625a430
+27
2 changed files
expand all
collapse all
unified
split
pkgs
applications
graphics
pureref
default.nix
top-level
all-packages.nix
+25
pkgs/applications/graphics/pureref/default.nix
···
1
1
+
{ lib, appimageTools, requireFile }:
2
2
+
3
3
+
appimageTools.wrapType1 rec {
4
4
+
pname = "pureref";
5
5
+
version = "1.11.1";
6
6
+
7
7
+
src = requireFile {
8
8
+
name = "PureRef-${version}_x64.Appimage";
9
9
+
sha256 = "05naywdgykqrsgc3xybskr418cyvbx7vqs994yv9w8zf98gxvbvm";
10
10
+
url = "https://www.pureref.com/download.php";
11
11
+
};
12
12
+
13
13
+
extraInstallCommands = ''
14
14
+
mv $out/bin/${pname}-${version} $out/bin/${pname}
15
15
+
'';
16
16
+
17
17
+
meta = with lib; {
18
18
+
description = "Reference Image Viewer";
19
19
+
homepage = "https://www.pureref.com";
20
20
+
license = licenses.unfree;
21
21
+
maintainers = with maintainers; [ elnudev ];
22
22
+
platforms = [ "x86_64-linux" ];
23
23
+
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
24
24
+
};
25
25
+
}
+2
pkgs/top-level/all-packages.nix
···
29838
29838
29839
29839
popura = callPackage ../tools/networking/popura {};
29840
29840
29841
29841
+
pureref = callPackage ../applications/graphics/pureref { };
29842
29842
+
29841
29843
shepherd = nodePackages."@nerdwallet/shepherd";
29842
29844
29843
29845
skate = callPackage ../applications/misc/skate { };