summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorNiclas <33751841+buffet@users.noreply.github.com>2019-02-25 18:12:54 +0100
committerWill Dietz <github@wdtz.org>2019-02-25 11:12:54 -0600
commit5082ab8335be9a0895ca78fe1ae81a5a186ae4a4 (patch)
tree8214b5c87efea47299296c0faa45450032c18049 /pkgs/data
parentc3a3ae19617c8396ef034c6a9f14ab4fcb29b13f (diff)
downloadnixpkgs-5082ab8335be9a0895ca78fe1ae81a5a186ae4a4.tar
nixpkgs-5082ab8335be9a0895ca78fe1ae81a5a186ae4a4.tar.gz
nixpkgs-5082ab8335be9a0895ca78fe1ae81a5a186ae4a4.tar.bz2
nixpkgs-5082ab8335be9a0895ca78fe1ae81a5a186ae4a4.tar.lz
nixpkgs-5082ab8335be9a0895ca78fe1ae81a5a186ae4a4.tar.xz
nixpkgs-5082ab8335be9a0895ca78fe1ae81a5a186ae4a4.tar.zst
nixpkgs-5082ab8335be9a0895ca78fe1ae81a5a186ae4a4.zip
creep: init at 0.31 (#56264)
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/fonts/creep/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/data/fonts/creep/default.nix b/pkgs/data/fonts/creep/default.nix
new file mode 100644
index 00000000000..bad78e3433e
--- /dev/null
+++ b/pkgs/data/fonts/creep/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchFromGitHub, fontforge }:
+
+stdenv.mkDerivation rec {
+  pname = "creep";
+  version = "0.31";
+
+  src = fetchFromGitHub {
+    owner = "romeovs";
+    repo = pname;
+    rev = version;
+    sha256 = "0zs21kznh1q883jfdgz74bb63i4lxlv98hj3ipp0wvsi6zw0vs8n";
+  };
+
+  nativeBuildInputs = [ fontforge ];
+
+  dontBuild = true;
+
+  installPhase = ''
+    install -D -m644 creep.bdf "$out/usr/share/fonts/misc/creep.bdf"
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A pretty sweet 4px wide pixel font";
+    homepage = https://github.com/romeovs/creep;
+    license = licenses.mit;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ buffet ];
+  };
+}