albatross: 1.7.3 -> 1.7.4

This commit is contained in:
Pascal Wittmann 2016-01-10 20:10:24 +01:00
parent 9c0fccc724
commit dfe65b6ef8

View File

@ -1,13 +1,14 @@
{stdenv, fetchgit}: { stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "Albatross-${version}"; name = "Albatross-${version}";
version = "1.7.3"; version = "1.7.4";
src = fetchgit { src = fetchFromGitHub {
url = git://github.com/shimmerproject/Albatross.git; repo = "Albatross";
rev = "refs/tags/v${version}"; owner = "shimmerproject";
sha256 = "7a585068dd59f753149c0d390f2ef541f2ace67e7d681613588edb9f962e3196"; rev = "v${version}";
sha256 = "0mq87n2hxy44nzr567av24n5nqjaljhi1afxrn3mpjqdbkq7lx88";
}; };
dontBuild = true; dontBuild = true;
@ -18,8 +19,8 @@ stdenv.mkDerivation rec {
''; '';
meta = { meta = {
description = "Albatross"; description = "A desktop Suite for Xfce";
homepage = "http://shimmerproject.org/our-projects/albatross/"; homepage = http://shimmerproject.org/our-projects/albatross/;
license = stdenv.lib.licenses.gpl2; license = stdenv.lib.licenses.gpl2;
}; };
} }