kdeApps_15_08.oxygen-icons: init at 15.04.03
This commit is contained in:
parent
5df5e1f165
commit
b93e80a6e8
@ -60,6 +60,7 @@ let
|
||||
libkexiv2 = callPackage ./libkexiv2.nix {};
|
||||
libkipi = callPackage ./libkipi.nix {};
|
||||
okular = callPackage ./okular.nix {};
|
||||
oxygen-icons = callPackage ./oxygen-icons.nix {};
|
||||
print-manager = callPackage ./print-manager.nix {};
|
||||
};
|
||||
|
||||
|
@ -4,14 +4,13 @@
|
||||
set -x
|
||||
|
||||
# The trailing slash at the end is necessary!
|
||||
RELEASE_URL="http://download.kde.org/stable/applications/15.08.2/"
|
||||
EXTRA_WGET_ARGS='-A *.tar.xz'
|
||||
WGET_ARGS='http://download.kde.org/stable/applications/15.08.2/ http://download.kde.org/stable/applications/15.04.3/src/oxygen-icons-15.04.3.tar.xz -A *.tar.xz'
|
||||
|
||||
mkdir tmp; cd tmp
|
||||
|
||||
rm -f ../srcs.csv
|
||||
|
||||
wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS
|
||||
wget -nH -r -c --no-parent $WGET_ARGS
|
||||
|
||||
find . | while read src; do
|
||||
if [[ -f "${src}" ]]; then
|
||||
|
13
pkgs/applications/kde-apps-15.08/oxygen-icons.nix
Normal file
13
pkgs/applications/kde-apps-15.08/oxygen-icons.nix
Normal file
@ -0,0 +1,13 @@
|
||||
{ kdeApp
|
||||
, lib
|
||||
, cmake
|
||||
}:
|
||||
|
||||
kdeApp {
|
||||
name = "oxygen-icons";
|
||||
nativeBuildInputs = [ cmake ];
|
||||
meta = {
|
||||
license = lib.license.lgpl3Plus;
|
||||
maintainers = [ lib.maintainers.ttuegel ];
|
||||
};
|
||||
}
|
@ -1866,6 +1866,14 @@
|
||||
name = "okular-15.08.2.tar.xz";
|
||||
};
|
||||
};
|
||||
oxygen-icons = {
|
||||
version = "15.04.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/applications/15.04.3/src/oxygen-icons-15.04.3.tar.xz";
|
||||
sha256 = "07npzyrbw2fn1qd04imnv7cz0sisk7yllrwr2y21yr2i1gbncfqk";
|
||||
name = "oxygen-icons-15.04.3.tar.xz";
|
||||
};
|
||||
};
|
||||
palapeli = {
|
||||
version = "15.08.2";
|
||||
src = fetchurl {
|
||||
|
Loading…
Reference in New Issue
Block a user