about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-03-11 14:20:18 +0100
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-03-11 14:20:18 +0100
commitef1641af4d622cea571ad07c2b8e7783d1dcb033 (patch)
treece73929214b2756090d581fa7ca3ac98e52c6613
parent642408468401f6ddebc06c4f3ffbfb5066fb9aba (diff)
chore(default.nix): remove overlay for libschrift
nixpkgs-unstable and nixos-unstable has libschrift 0.10.0 by now, so
this isn't necessary anymore. We will run into breakage however with the
next libschrift release it seems.
-rw-r--r--default.nix16
1 files changed, 1 insertions, 15 deletions
diff --git a/default.nix b/default.nix
index 54d5190..2c0ed71 100644
--- a/default.nix
+++ b/default.nix
@@ -1,18 +1,4 @@
-let
-  dev-schrift = self: super: {
-    libschrift = super.libschrift.overrideAttrs (old: {
-      version = "unstable";
-      src = self.fetchFromGitHub {
-        owner = "tomolt";
-        repo = "libschrift";
-        rev = "264dec228166fb20669ebe7deb985d123c2d073a";
-        hash = "sha256-bztleMa1MAF3EPkQKVP4OfZIM7jrcJVBHpEAa08v0d4=";
-      };
-    });
-  };
-in
-
-{ pkgs ? import <nixpkgs> { overlays = [ dev-schrift ]; } }:
+{ pkgs ? import <nixpkgs> { } }:
 
 let
   gi = pkgs.nix-gitignore;