summary refs log tree commit diff
diff options
context:
space:
mode:
authortchab <dev@chabs.name>2022-12-29 17:05:35 +0000
committertchab <dev@chabs.name>2022-12-29 17:05:35 +0000
commite772351a7267c065be6ebb6ea5fd3088fda40985 (patch)
treeedd00a1b29918064f5734530bb7c72ebdf72cb9e
parent66a0e92362a69031abad8baee187514d914e1d9b (diff)
downloadnixpkgs-e772351a7267c065be6ebb6ea5fd3088fda40985.tar
nixpkgs-e772351a7267c065be6ebb6ea5fd3088fda40985.tar.gz
nixpkgs-e772351a7267c065be6ebb6ea5fd3088fda40985.tar.bz2
nixpkgs-e772351a7267c065be6ebb6ea5fd3088fda40985.tar.lz
nixpkgs-e772351a7267c065be6ebb6ea5fd3088fda40985.tar.xz
nixpkgs-e772351a7267c065be6ebb6ea5fd3088fda40985.tar.zst
nixpkgs-e772351a7267c065be6ebb6ea5fd3088fda40985.zip
stylish: init at unstable-2022-12-05
-rw-r--r--pkgs/applications/misc/stylish/default.nix39
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/applications/misc/stylish/default.nix b/pkgs/applications/misc/stylish/default.nix
new file mode 100644
index 00000000000..43fcc0bb193
--- /dev/null
+++ b/pkgs/applications/misc/stylish/default.nix
@@ -0,0 +1,39 @@
+{ lib
+, stdenvNoCC
+, fetchFromGitHub
+}:
+
+stdenvNoCC.mkDerivation rec {
+  pname = "stylish";
+  version = "unstable-2022-12-05";
+
+  src = fetchFromGitHub {
+    owner = "thevinter";
+    repo = "styli.sh";
+    rev = "d595412a949c6cdc7e151ae0cf929aa1958aa7f1";
+    hash = "sha256-lFnzrYnTFWe8bvK//aC1+TapWIFNsNP60Msn7D0tk/0=";
+  };
+
+  installPhase = ''
+    runHook preInstall
+    mkdir -p $out/bin
+    cp "${src}/styli.sh" $out/bin
+    chmod +x $out/bin/styli.sh
+    runHook postInstall
+  '';
+
+  meta = with lib; {
+    homepage = "https://github.com/thevinter/styli.sh";
+    description = "A shell script to manage wallpapers";
+    longDescription = ''
+      Styli.sh is a Bash script that aims to automate the tedious process
+      of finding new wallpapers, downloading and switching them via the
+      configs.
+      Styli.sh can search for specific wallpapers from unsplash or download
+      a random image from the specified subreddits. If you have pywal it also
+      can set automatically your terminal colors.
+    '';
+    license = licenses.mit;
+    maintainers = with maintainers; [ tchab ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index f19bc2784f3..41afe532b8f 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -12018,6 +12018,8 @@ with pkgs;
   strongswanTNC = strongswan.override { enableTNC = true; };
   strongswanNM  = strongswan.override { enableNetworkManager = true; };
 
+  stylish = callPackage ../applications/misc/stylish { };
+
   stylish-haskell = haskell.lib.compose.justStaticExecutables haskellPackages.stylish-haskell;
 
   su = shadow.su;