about summary refs log tree commit diff
path: root/pkgs/by-name/pr
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2023-12-06 23:58:55 +0100
committerGitHub <noreply@github.com>2023-12-06 23:58:55 +0100
commit37eb75ecc29fcdbe94b7480a024e5619abb0f06b (patch)
tree548b38321194d220d98be4175425e9548b2f1196 /pkgs/by-name/pr
parent6be62203abd573b77472606e4848d29e2f1dd961 (diff)
parente9654b3ea39a9d170da0e0739119f6d39a07720c (diff)
downloadnixlib-37eb75ecc29fcdbe94b7480a024e5619abb0f06b.tar
nixlib-37eb75ecc29fcdbe94b7480a024e5619abb0f06b.tar.gz
nixlib-37eb75ecc29fcdbe94b7480a024e5619abb0f06b.tar.bz2
nixlib-37eb75ecc29fcdbe94b7480a024e5619abb0f06b.tar.lz
nixlib-37eb75ecc29fcdbe94b7480a024e5619abb0f06b.tar.xz
nixlib-37eb75ecc29fcdbe94b7480a024e5619abb0f06b.tar.zst
nixlib-37eb75ecc29fcdbe94b7480a024e5619abb0f06b.zip
Merge pull request #270301 from atorres1985-contrib/arcan
Arcan updates
Diffstat (limited to 'pkgs/by-name/pr')
-rw-r--r--pkgs/by-name/pr/prio/package.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/by-name/pr/prio/package.nix b/pkgs/by-name/pr/prio/package.nix
new file mode 100644
index 000000000000..620e4f9382ce
--- /dev/null
+++ b/pkgs/by-name/pr/prio/package.nix
@@ -0,0 +1,37 @@
+{ lib
+, stdenvNoCC
+, fetchFromGitHub
+}:
+
+stdenvNoCC.mkDerivation (finalAttrs: {
+  pname = "prio";
+  version = "unstable-2018-09-13";
+
+  src = fetchFromGitHub {
+    owner = "letoram";
+    repo = "prio";
+    rev = "c3f97491339d15f063d6937d5f89bcfaea774dd1";
+    hash = "sha256-Idv/duEYmDk/rO+TI8n+FY3VFDtUEh8C292jh12BJuM=";
+  };
+
+  dontConfigure = true;
+
+  dontBuild = true;
+
+  installPhase = ''
+    runHook preInstall
+
+    mkdir -p ${placeholder "out"}/share/arcan/appl/prio
+    cp -a ./* ${placeholder "out"}/share/arcan/appl/prio
+
+    runHook postInstall
+  '';
+
+  meta = {
+    homepage = "https://github.com/letoram/prio";
+    description = "Plan9- Rio like Window Manager for Arcan";
+    license = with lib.licenses; [ bsd3 ];
+    maintainers = with lib.maintainers; [ AndersonTorres ];
+    platforms = lib.platforms.all;
+  };
+})