tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
corkscrew: name -> pname
Luflosi
4 years ago
47c6bd0c
89d05555
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
corkscrew
default.nix
+3
-2
pkgs/tools/networking/corkscrew/default.nix
reviewed
···
1
1
{ lib, stdenv, fetchurl, automake }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
name = "corkscrew-2.0";
4
4
+
pname = "corkscrew";
5
5
+
version = "2.0";
5
6
6
7
src = fetchurl {
7
7
-
url = "http://agroman.net/corkscrew/${name}.tar.gz";
8
8
+
url = "http://agroman.net/corkscrew/corkscrew-${version}.tar.gz";
8
9
sha256 = "0d0fcbb41cba4a81c4ab494459472086f377f9edb78a2e2238ed19b58956b0be";
9
10
};
10
11