Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c29f267d9285
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9396b273cc83
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Mar 31, 2019

  1. samim-fonts: init at 3.1.0 (#58383)

    LinArcX authored and veprbl committed Mar 31, 2019
    Copy the full SHA
    9396b27 View commit details
Showing with 28 additions and 0 deletions.
  1. +26 −0 pkgs/data/fonts/samim-fonts/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
26 changes: 26 additions & 0 deletions pkgs/data/fonts/samim-fonts/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
pname = "samim-fonts";
version = "3.1.0";

src = fetchFromGitHub {
owner = "rastikerdar";
repo = "samim-font";
rev = "v${version}";
sha256 = "1mp0pgbn9r098ilajwzag7c21shwb13mq61ly9av0mfbpnhkkjqk";
};

installPhase = ''
mkdir -p $out/share/fonts/samim-fonts
cp -v $( find . -name '*.ttf') $out/share/fonts/samim-fonts
'';

meta = with stdenv.lib; {
homepage = https://github.com/rastikerdar/samim-font;
description = "A Persian (Farsi) Font - فونت (قلم) فارسی صمیم";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.linarcx ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -5434,6 +5434,8 @@ in

salut_a_toi = callPackage ../applications/networking/instant-messengers/salut-a-toi {};

samim-fonts = callPackage ../data/fonts/samim-fonts {};

saml2aws = callPackage ../tools/security/saml2aws {};

samplicator = callPackage ../tools/networking/samplicator { };