summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2016-06-10 10:24:44 -0300
committerChristoph Hrdinka <c.git@hrdinka.at>2016-06-13 09:40:43 +0200
commitc33cf023374050f6c3a70cc34d83256b6f1bc544 (patch)
treeb6c3a4d27991796bd9e6dc73bb99a1c6412cc1b1 /pkgs/data
parentff45ea743f0a82adab8013eca29dc6fb9bae6e84 (diff)
downloadnixpkgs-c33cf023374050f6c3a70cc34d83256b6f1bc544.tar
nixpkgs-c33cf023374050f6c3a70cc34d83256b6f1bc544.tar.gz
nixpkgs-c33cf023374050f6c3a70cc34d83256b6f1bc544.tar.bz2
nixpkgs-c33cf023374050f6c3a70cc34d83256b6f1bc544.tar.lz
nixpkgs-c33cf023374050f6c3a70cc34d83256b6f1bc544.tar.xz
nixpkgs-c33cf023374050f6c3a70cc34d83256b6f1bc544.tar.zst
nixpkgs-c33cf023374050f6c3a70cc34d83256b6f1bc544.zip
faba-icon-theme: init at 2016-06-02
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/icons/faba-icon-theme/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/data/icons/faba-icon-theme/default.nix b/pkgs/data/icons/faba-icon-theme/default.nix
new file mode 100644
index 00000000000..b83abbe7e80
--- /dev/null
+++ b/pkgs/data/icons/faba-icon-theme/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, elementary-icon-theme }:
+
+stdenv.mkDerivation rec {
+  name = "${package-name}-${version}";
+  package-name = "faba-icon-theme";
+  version = "2016-06-02";
+
+  src = fetchFromGitHub {
+    owner = "moka-project";
+    repo = package-name;
+    rev = "e50649d0171fd8cce42404c7c5002d77710ffcfc";
+    sha256 = "1fn969a6l58asnl9181c2z1fsj4dybl2mgbcpwig20bri6q7yz20";
+  };
+
+  nativeBuildInputs = [ autoreconfHook ];
+
+  buildInputs = [ elementary-icon-theme ];
+
+  postPatch = ''
+    substituteInPlace Makefile.am --replace '$(DESTDIR)'/usr $out
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A sexy and modern icon theme with Tango influences";
+    homepage = https://snwh.org/moka;
+    license = with licenses; [ cc-by-sa-40 gpl3 ];
+    platforms = platforms.all;
+    maintainers = with maintainers; [ romildo ];
+  };
+}