mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Changed fetchgit to fetchFromGitHub
This commit is contained in:
parent
d09ed00e2d
commit
16d2799af2
1 changed files with 11 additions and 8 deletions
|
@ -1,11 +1,14 @@
|
|||
{ stdenv, fetchgit }:
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "cde-0.1";
|
||||
src = fetchgit {
|
||||
url = "https://github.com/pgbovine/CDE.git";
|
||||
sha256 = "";
|
||||
rev = "551e54d95eb3f8eefc698891f1b873fc4f02f360";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cde-${version}";
|
||||
version = "0.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pgbovine";
|
||||
repo = "CDE";
|
||||
sha256 = "0raiz7pczkbnzxpg7g59v7gdp1ipkwgms2vh3431snw1va1gjzmk";
|
||||
rev = "v${version}";
|
||||
};
|
||||
|
||||
# The build is small, so there should be no problem
|
||||
|
@ -25,7 +28,7 @@ stdenv.mkDerivation {
|
|||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/pgbovine/CDE";
|
||||
homepage = https://github.com/pgbovine/CDE;
|
||||
description = "A packaging tool for building portable packages";
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.rlupton20 ];
|
||||
|
|
Loading…
Reference in a new issue