tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
galer: init at 0.0.2
Fabian Affolter
5 years ago
49007cec
025b8019
+27
2 changed files
expand all
collapse all
unified
split
pkgs
tools
security
galer
default.nix
top-level
all-packages.nix
+25
pkgs/tools/security/galer/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
0
0
···
1
+
{ lib
2
+
, buildGoModule
3
+
, fetchFromGitHub
4
+
}:
5
+
6
+
buildGoModule rec {
7
+
pname = "galer";
8
+
version = "0.0.2";
9
+
10
+
src = fetchFromGitHub {
11
+
owner = "dwisiswant0";
12
+
repo = pname;
13
+
rev = "v${version}";
14
+
sha256 = "1923071rk078mqk5mig45kcrr58ni02rby3r298myld7j9gfnylb";
15
+
};
16
+
17
+
vendorSha256 = "0p5b6cp4ccvcjiy3g9brcwb08wxjbrpsza525fmx38wyyi0n0wns";
18
+
19
+
meta = with lib; {
20
+
description = "Tool to fetch URLs from HTML attributes";
21
+
homepage = "https://github.com/dwisiswant0/galer";
22
+
license = with licenses; [ mit ];
23
+
maintainers = with maintainers; [ fab ];
24
+
};
25
+
}
+2
pkgs/top-level/all-packages.nix
···
13882
13883
funambol = callPackage ../development/libraries/funambol { };
13884
0
0
13885
gamenetworkingsockets = callPackage ../development/libraries/gamenetworkingsockets { };
13886
13887
gamin = callPackage ../development/libraries/gamin { };
···
13882
13883
funambol = callPackage ../development/libraries/funambol { };
13884
13885
+
galer = callPackage ../tools/security/galer { };
13886
+
13887
gamenetworkingsockets = callPackage ../development/libraries/gamenetworkingsockets { };
13888
13889
gamin = callPackage ../development/libraries/gamin { };