Skip to content

Commit

Permalink
pius: move source from Sourceforge to Github
Browse files Browse the repository at this point in the history
Development of pius has moved to Github.
  • Loading branch information
kierdavis committed Nov 24, 2017
1 parent 9c048f4 commit b354f88
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pkgs/tools/security/pius/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{ fetchurl, stdenv, python, gnupg }:
{ fetchFromGitHub, stdenv, python, gnupg }:

let version = "2.0.11"; in
stdenv.mkDerivation {
name = "pius-${version}";
namePrefix = "";

src = fetchurl {
url = "mirror://sourceforge/pgpius/pius/${version}/pius-${version}.tar.bz2";
sha256 = "0pdbyqz6k0bm182cz81ss7yckmpms5qhrrw0wcr4a1srzcjyzf5f";
src = fetchFromGitHub {
owner = "jaymzh";
repo = "pius";
rev = "v${version}";
sha256 = "0msqhk0bhnq0f3crr0zf3dc9qb01ghib25fh3sz9dbprxclr5ps9";
};

buildInputs = [ python ];
Expand Down

0 comments on commit b354f88

Please sign in to comment.